home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
maypro1a
/
mdiform1.frm
< prev
next >
Wrap
Text File
|
1998-12-06
|
1KB
|
48 lines
VERSION 5.00
Begin VB.MDIForm MDIForm1
AutoShowChildren= 0 'False
BackColor = &H8000000C&
Caption = "MDIForm1"
ClientHeight = 3195
ClientLeft = 165
ClientTop = 735
ClientWidth = 4680
LinkTopic = "MDIForm1"
StartUpPosition = 3 'Windows Default
Begin Proyecto1.MayProgress MayProgress1
Align = 2 'Align Bottom
Height = 375
Left = 0
TabIndex = 0
Top = 2820
Width = 4680
_extentx = 8255
_extenty = 0
End
Begin VB.Menu sdfsdfsdf
Caption = "A±adirProgreso"
End
Begin VB.Menu asfsdfsdfsdf
Caption = "QuitarProgreso"
End
End
Attribute VB_Name = "MDIForm1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub asfsdfsdfsdf_Click()
Dim s As String
s = InputBox("Progreso:")
If Not IsNumeric(s) Then Exit Sub
MayProgress1.TerminarProgreso CLng(s)
End Sub
Private Sub sdfsdfsdf_Click()
Call MayProgress1.MostrarProgreso("", 100)
End Sub